- Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path2. Add Two Numbers.c
73 lines (58 loc) · 1.71 KB
/
2. Add Two Numbers.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
2. Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
structListNode*addTwoNumbers(structListNode*l1, structListNode*l2) {
structListNode*head=NULL;
structListNode*p, *q;
ints=0;
while (l1||l2||s!=0) {
p=malloc(sizeof(structListNode));
//assert(p);
if (l1) {
s+=l1->val;
l1=l1->next;
}
if (l2) {
s+=l2->val;
l2=l2->next;
}
p->val=s % 10;
p->next=NULL;
s=s / 10;
if (!head) {
head=p;
}
if (q) {
q->next=p;
}
q=p;
}
returnhead;
}
/*
Difficulty:Medium
Total Accepted:329.9K
Total Submissions:1.2M
Companies Amazon Microsoft Bloomberg Airbnb Adobe
Related Topics Linked List Math
Similar Questions
Multiply Strings
Add Binary
Sum of Two Integers
Add Strings
Add Two Numbers II
*/